home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi Magazine Collection 2001
/
Delphi Magazine Collection 20001 (2001).iso
/
DISKS
/
Issue62
/
ClassEng
/
Listing1.pas
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
Pascal/Delphi Source File
|
2000-09-01
|
264 b
|
17 lines
Listing 1
TParent = class(TObject)
private
ParNbr1: Integer;
ParNbr2: Integer;
public
procedure DoSomethingParental;
end;
TChild = class(TParent)
private
ChldNbrA: Integer;
ChldNbrB: Integer;
public
procedure DoSomethingChildish;
end;